#
OBJS = toxdf.obj toxdf.res
LIBS = shell32.lib user32.lib
TARGET = ToXDF.exe

.c.obj :
	cl /c /Ox /YX /GF /MD /nologo $<

.rc.res :
	rc $<

all : $(TARGET)

$(TARGET) : $(OBJS)
	cl /Fe$(TARGET) /nologo $(OBJS) $(LIBS)

toxdf.obj : toxdf.c res.h
toxdf.res : toxdf.rc res.h
